home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / NetPokerForMacOSX_Server / HoldEmHigh / PotManager.h < prev    next >
Encoding:
Text File  |  1999-06-25  |  168 b   |  14 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface PotManager : NSObject
  4. {
  5.     id potField;
  6.     id potImage;
  7.     int pot;
  8. }
  9. - (void)updatePotAmount:(int)dollars;
  10. - (int)pot;
  11.  
  12.  
  13. @end
  14.